home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / avahi-daemon.postinst < prev    next >
Text File  |  2009-10-18  |  2KB  |  68 lines

  1. #!/bin/sh
  2. # postinst script for avahi-daemon
  3.  
  4. set -e
  5.  
  6. # summary of how this script can be called:
  7. #        * <postinst> `configure' <most-recently-configured-version>
  8. #        * <old-postinst> `abort-upgrade' <new version>
  9. #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
  10. #          <new-version>
  11. #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
  12. #          <failed-install-package> <version> `removing'
  13. #          <conflicting-package> <version>
  14. # for details, see http://www.debian.org/doc/debian-policy/ or
  15. # the debian-policy package
  16.  
  17. case "$1" in
  18.   configure)
  19.     if ! getent passwd avahi >/dev/null; then
  20.       adduser --disabled-password  --quiet --system \
  21.         --home /var/run/avahi-daemon --no-create-home \
  22.         --gecos "Avahi mDNS daemon" --group avahi
  23.     fi
  24.     # If the Avahi user has the old home, change it
  25.     if ! getent passwd avahi | grep -q /var/run/avahi-daemon; then
  26.         usermod -d /var/run/avahi-daemon avahi
  27.     fi
  28.  
  29.     # Add the netdev group unless it's already there
  30.     if ! getent group netdev >/dev/null; then
  31.       addgroup --quiet --system netdev || true
  32.     fi
  33.  
  34.     # update init script symlinks for new runlevels and priorities for upgrades
  35.     # from older versions
  36.     if dpkg --compare-versions "$2" lt-nl 0.6.23-4ubuntu3 && \
  37.        [ -e /etc/rc2.d/S??avahi-daemon ]; then
  38.       echo "Reinstalling init script for new runlevels and priorities ..." >&2
  39.       # remove old init script symlinks; dh_installinit adds the proper
  40.       # update-rc.d snippet later on
  41.       update-rc.d -f avahi-daemon remove >/dev/null
  42.     fi
  43.  
  44.     # Ask the bus to reload the config file
  45.     if [ -x "/etc/init.d/dbus" ]; then
  46.       invoke-rc.d dbus force-reload || true
  47.     fi
  48.   ;;
  49.   abort-upgrade|abort-remove|abort-deconfigure)
  50.   ;;
  51.   *)
  52.     echo "postinst called with unknown argument \`$1'" >&2
  53.     exit 1
  54.   ;;
  55. esac
  56.  
  57. # Automatically added by dh_installinit
  58. if [ -e "/etc/init/avahi-daemon.conf" ]; then
  59.     # start fails if already running
  60.     start avahi-daemon || :
  61. fi
  62. # End automatically added section
  63. # Automatically added by dh_installinit
  64. update-rc.d -f avahi-daemon remove >/dev/null || exit $?
  65. # End automatically added section
  66.  
  67.  
  68.